}
public static void addLabel(JPanel p, String label) {
p.add(new JLabel(label), GBC.eol());
}
}
* @param label The text label
*/
public static void addLabel(JPanel p, String label) {
p.add(new JLabel(label), GBC.eol().fill(GBC.HORIZONTAL));
}
}